home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
050
/
turbot2.arc
/
PROG15A.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1985-06-28
|
261 b
|
16 lines
PROGRAM PROG15A;
{$U+ Copyright (C), 1985 by Lyle Faurot. All rights reserved.
New Topics: Cursor location
VAR
X, Y : Integer;
BEGIN
ClrScr;
Write('Enter X and Y: ');
ReadLn(X, Y);
GotoXY(X, Y);
WriteLn(X,' ',Y);
END.